.cta-section {
    padding: 4rem 0;
    color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-extrabold);
    color: rgb(0, 0, 0);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    color: rgba(0, 0, 0, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}


.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: none;
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.btn-cta:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: none;
}

.cta-trust {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
    color: #10b981;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float-gentle 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 80%;
    animation-delay: -4s;
}

@keyframes float-gentle {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.05; 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
        opacity: 0.1; 
    }
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 1.1rem 2.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }
    
    .cta-trust {
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 1rem;
    }
}